home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / PaintFX.ifx.pre < prev    next >
Text File  |  1996-03-02  |  638b  |  30 lines

  1. /*
  2.  * PaintFX.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Call PaintFX hook.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. fpath = GETCLIP('Autofx_PaintFX_Path') ; IF fpath = "" THEN fpath = "Storage/PaintFX"
  19. ffile = GETCLIP('Autofx_PaintFX_File')
  20.  
  21. RequestFile '"Select PaintFX Style:"' '"'fpath'"' '"'ffile'"'
  22. IF rc ~= 0 THEN EXIT rc
  23.  
  24. CALL SETCLIP('Autofx_PaintFX_Style', filereq.file)
  25.  
  26. CALL SETCLIP('Autofx_PaintFX_Path', filereq.path)
  27. CALL SETCLIP('Autofx_PaintFX_File', filereq.file)
  28.  
  29. EXIT
  30.